home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games: Greatest Hits 1996 / Amiga Games: Greatest Hits 1996.iso / rexx / splitanim.agaiff < prev    next >
Text File  |  1995-04-23  |  285b  |  21 lines

  1. /* Anim2Pictures.agaiff */
  2.  
  3. /* Converts animation into single pictures */
  4.  
  5. address agaiff_rexx
  6. options results
  7.  
  8. requestfile "Anim2Pictures - FileName.."
  9. filename = result
  10. if filename == "" then exit
  11.  
  12. noshow
  13. i=0
  14.  
  15. do forever
  16.     save filename||"."||i
  17.     i=i+1
  18.     anext
  19.     if rc~=0 then exit
  20. end;
  21.